home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2004 New Year / INTERNET112.ISO / pc / software / windows / building / easy_php / easyphp16_setup.exe / {app} / safe / php-safe.ini < prev   
Encoding:
INI File  |  2003-09-24  |  24.2 KB  |  517 lines

  1. [PHP]
  2.  
  3. ;;;;;;;;;;;;;;;;;;;
  4. ; About this file ;
  5. ;;;;;;;;;;;;;;;;;;;
  6. ; This file controls many aspects of PHP's behavior.  In order for PHP to
  7. ; read it, it must be named 'php.ini'.  PHP looks for it in the current
  8. ; working directory, in the path designated by the environment variable
  9. ; PHPRC, and in the path that was defined in compile time (in that order).
  10. ; Under Windows, the compile-time path is the Windows directory.  The
  11. ; path in which the php.ini file is looked for can be overriden using
  12. ; the -c argument in command line mode.in
  13. ;
  14. ; The syntax of the file is extremely simple.  Whitespace and Lines
  15. ; beginning with a semicolon are silently ignored (as you probably guessed).
  16. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  17. ; they might mean something in the future.
  18. ;
  19. ; Directives are specified using the following syntax:
  20. ; directive = value
  21. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  22. ;
  23. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  24. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  25. ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
  26. ;
  27. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  28. ; |                bitwise OR
  29. ; &                bitwise AND
  30. ; ~                bitwise NOT
  31. ; !                boolean NOT
  32. ;
  33. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  34. ; They can be turned off using the values 0, Off, False or No.
  35. ;
  36. ; An empty string can be denoted by simply not writing anything after the equal
  37. ; sign, or by using the None keyword:
  38. ;
  39. ;   foo =            ; sets foo to an empty string
  40. ;    foo = none        ; sets foo to an empty string
  41. ;    foo = "none"    ; sets foo to the string 'none'
  42. ;
  43. ; If you use constants in your value, and these constants belong to a dynamically
  44. ; loaded extension (either a PHP extension or a Zend extension), you may only
  45. ; use these constants *after* the line that loads the extension.
  46. ;
  47. ; All the values in the php.ini-dist file correspond to the builtin
  48. ; defaults (that is, if no php.ini is used, or if you delete these lines,
  49. ; the builtin defaults will be identical).
  50.  
  51.  
  52. ;;;;;;;;;;;;;;;;;;;;
  53. ; Language Options ;
  54. ;;;;;;;;;;;;;;;;;;;;
  55.  
  56. engine            =    On    ; Enable the PHP scripting language engine under Apache
  57. short_open_tag    =    On    ; allow the <? tag.  otherwise, only <?php and <script> tags are recognized.
  58. asp_tags        =    Off ; allow ASP-style <% %> tags
  59. precision        =    14    ; number of significant digits displayed in floating point numbers
  60. y2k_compliance    =    Off    ; whether to be year 2000 compliant (will cause problems with non y2k compliant browsers)
  61. output_buffering    = Off    ; Output buffering allows you to send header lines (including cookies)
  62.                             ; even after you send body content, in the price of slowing PHP's
  63.                             ; output layer a bit.
  64.                             ; You can enable output buffering by in runtime by calling the output
  65.                             ; buffering functions, or enable output buffering for all files
  66.                             ; by setting this directive to On.
  67. implicit_flush        = On    ; Implicit flush tells PHP to tell the output layer to flush itself
  68.                             ; automatically after every output block.  This is equivalent to
  69.                             ; calling the PHP function flush() after each and every call to print()
  70.                             ; or echo() and each and every HTML block.
  71.                             ; Turning this option on has serious performance implications, and
  72.                             ; is generally recommended for debugging purposes only.
  73. allow_call_time_pass_reference    = On    ; whether to enable the ability to force arguments to be 
  74.                                         ; passed by reference at function-call time.  This method
  75.                                         ; is deprecated, and is likely to be unsupported in future
  76.                                         ; versions of PHP/Zend.  The encouraged method of specifying
  77.                                         ; which arguments should be passed by reference is in the
  78.                                         ; function declaration.  You're encouraged to try and
  79.                                         ; turn this option Off, and make sure your scripts work
  80.                                         ; properly with it, to ensure they will work with future
  81.                                         ; versions of the language (you will receive a warning
  82.                                         ; each time you use this feature, and the argument will
  83.                                         ; be passed by value instead of by reference).
  84.  
  85. ; Safe Mode
  86. safe_mode        =    Off
  87. safe_mode_exec_dir    =
  88. safe_mode_allowed_env_vars = PHP_                    ; Setting certain environment variables
  89.                                                     ; may be a potential security breach.
  90.                                                     ; This directive contains a comma-delimited
  91.                                                     ; list of prefixes.  In Safe Mode, the
  92.                                                     ; user may only alter environment
  93.                                                     ; variables whose names begin with the
  94.                                                     ; prefixes supplied here.
  95.                                                     ; By default, users will only be able
  96.                                                     ; to set environment variables that begin
  97.                                                     ; with PHP_ (e.g. PHP_FOO=BAR).
  98.                                                     ; Note:  If this directive is empty, PHP
  99.                                                     ; will let the user modify ANY environment
  100.                                                     ; variable!
  101. safe_mode_protected_env_vars = LD_LIBRARY_PATH        ; This directive contains a comma-
  102.                                                     ; delimited list of environment variables,
  103.                                                     ; that the end user won't be able to
  104.                                                     ; change using putenv().
  105.                                                     ; These variables will be protected
  106.                                                     ; even if safe_mode_allowed_env_vars is
  107.                                                     ; set to allow to change them.
  108.  
  109.  
  110. disable_functions    =                                ; This directive allows you to disable certain
  111.                                                     ; functions for security reasons.  It receives
  112.                                                     ; a comma separated list of function names.
  113.                                                     ; This directive is *NOT* affected by whether
  114.                                                     ; Safe Mode is turned on or off.
  115.                                                     
  116.  
  117. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in <font color=???> would work.
  118. highlight.string    =    #DD0000
  119. highlight.comment    =    #FF8000
  120. highlight.keyword    =    #007700
  121. highlight.bg        =    #FFFFFF
  122. highlight.default    =    #0000BB
  123. highlight.html        =    #000000
  124.  
  125. ; Misc
  126. expose_php    =    On        ; Decides whether PHP may expose the fact that it is installed on the
  127.                         ; server (e.g., by adding its signature to the Web server header).
  128.                         ; It is no security threat in any way, but it makes it possible
  129.                         ; to determine whether you use PHP on your server or not.
  130.  
  131.  
  132.  
  133. ;;;;;;;;;;;;;;;;;;;
  134. ; Resource Limits ;
  135. ;;;;;;;;;;;;;;;;;;;
  136.  
  137. max_execution_time = 30     ; Maximum execution time of each script, in seconds
  138. memory_limit = 8M            ; Maximum amount of memory a script may consume (8MB)
  139.  
  140.  
  141. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  142. ; Error handling and logging ;
  143. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  144. ; error_reporting is a bit-field.  Or each number up to get desired error reporting level
  145. ; E_ALL                - All errors and warnings
  146. ; E_ERROR            - fatal run-time errors
  147. ; E_WARNING            - run-time warnings (non fatal errors)
  148. ; E_PARSE            - compile-time parse errors
  149. ; E_NOTICE            - run-time notices (these are warnings which often result from a bug in
  150. ;                      your code, but it's possible that it was intentional (e.g., using an
  151. ;                      uninitialized variable and relying on the fact it's automatically
  152. ;                      initialized to an empty string)
  153. ; E_CORE_ERROR        - fatal errors that occur during PHP's initial startup
  154. ; E_CORE_WARNING    - warnings (non fatal errors) that occur during PHP's initial startup
  155. ; E_COMPILE_ERROR    - fatal compile-time errors
  156. ; E_COMPILE_WARNING    - compile-time warnings (non fatal errors)
  157. ; E_USER_ERROR        - user-generated error message
  158. ; E_USER_WARNING    - user-generated warning message
  159. ; E_USER_NOTICE        - user-generated notice message
  160. ; Examples:
  161. ; error_reporting = E_ALL & ~E_NOTICE                        ; show all errors, except for notices
  162. ; error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR    ; show only errors
  163. error_reporting    =    E_ALL & ~E_NOTICE        ; Show all errors except for notices
  164. display_errors    =    On    ; Print out errors (as a part of the output)
  165.                         ; For production web sites, you're strongly encouraged
  166.                         ; to turn this feature off, and use error logging instead (see below).
  167.                         ; Keeping display_errors enabled on a production web site may reveal
  168.                         ; security information to end users, such as file paths on your Web server,
  169.                         ; your database schema or other information.
  170. display_startup_errors = Off        ; Even when display_errors is on, errors that occur during
  171.                                     ; PHP's startup sequence are not displayed.  It's strongly
  172.                                     ; recommended to keep display_startup_errors off, except for
  173.                                     ; when debugging.
  174. log_errors        =    Off    ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  175.                         ; As stated above, you're strongly advised to use error logging in place of
  176.                         ; error displaying on production web sites.
  177. track_errors    =    Off    ; Store the last error/warning message in $php_errormsg (boolean)
  178. ;error_prepend_string = "<font color=ff0000>"   ; string to output before an error message
  179. ;error_append_string = "</font>"                ; string to output after an error message
  180. ;error_log    =    filename    ; log errors to specified file
  181. ;error_log    =    syslog        ; log errors to syslog (Event Log on NT, not valid in Windows 95)
  182. warn_plus_overloading    =    Off        ; warn if the + operator is used with strings
  183.  
  184.  
  185. ;;;;;;;;;;;;;;;;;
  186. ; Data Handling ;
  187. ;;;;;;;;;;;;;;;;;
  188. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  189. variables_order        =    "EGPCS"    ; This directive describes the order in which PHP registers
  190.                                 ; GET, POST, Cookie, Environment and Built-in variables (G, P,
  191.                                 ; C, E & S respectively, often referred to as EGPCS or GPC).
  192.                                 ; Registration is done from left to right, newer values override
  193.                                 ; older values.
  194. register_globals    =    On        ; Whether or not to register the EGPCS variables as global
  195.                                 ; variables.  You may want to turn this off if you don't want
  196.                                 ; to clutter your scripts' global scope with user data.  This makes
  197.                                 ; most sense when coupled with track_vars - in which case you can
  198.                                 ; access all of the GPC variables through the $HTTP_*_VARS[],
  199.                                 ; variables.
  200.                                 ; You should do your best to write your scripts so that they do
  201.                                 ; not require register_globals to be on;  Using form variables
  202.                                 ; as globals can easily lead to possible security problems, if
  203.                                 ; the code is not very well thought of.
  204. register_argc_argv    =    On        ; This directive tells PHP whether to declare the argv&argc
  205.                                 ; variables (that would contain the GET information).  If you
  206.                                 ; don't use these variables, you should turn it off for
  207.                                 ; increased performance
  208. post_max_size        =    8M        ; Maximum size of POST data that PHP will accept.
  209. gpc_order            =    "GPC"    ; This directive is deprecated.  Use variables_order instead.
  210.  
  211. ; Magic quotes
  212. magic_quotes_gpc    =    On        ; magic quotes for incoming GET/POST/Cookie data
  213. magic_quotes_runtime=    Off        ; magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  214. magic_quotes_sybase    =    Off        ; Use Sybase-style magic quotes (escape ' with '' instead of \')
  215.  
  216. ; automatically add files before or after any PHP document
  217. auto_prepend_file    =
  218. auto_append_file    =
  219.  
  220. ; As of 4.0b4, PHP always outputs a character encoding by default in
  221. ; the Content-type: header.  To disable sending of the charset, simply
  222. ; set it to be empty.
  223. ; PHP's built-in default is text/html
  224. default_mimetype = "text/html"
  225. ;default_charset = "iso-8859-1"
  226.  
  227. ;;;;;;;;;;;;;;;;;;;;;;;;;
  228. ; Paths and Directories ;
  229. ;;;;;;;;;;;;;;;;;;;;;;;;;
  230. include_path    = ".;{app}\php\pear\"                  ; UNIX: "/path1:/path2"  Windows: "\path1;\path2"
  231. doc_root        =                    ; the root of the php pages, used only if nonempty
  232. user_dir        =                    ; the directory under which php opens the script using /~username, used only if nonempty
  233. extension_dir    ="{app}\php\extensions\"     ; directory in which the loadable extensions (modules) reside
  234. enable_dl        = On                ; Whether or not to enable the dl() function.
  235.                                     ; The dl() function does NOT properly work in multithreaded
  236.                                     ; servers, such as IIS or Zeus, and is automatically disabled
  237.                                     ; on them.
  238.  
  239.  
  240. ;;;;;;;;;;;;;;;;
  241. ; File Uploads ;
  242. ;;;;;;;;;;;;;;;;
  243. file_uploads    = On                ; Whether to allow HTTP file uploads
  244. upload_tmp_dir    ="{app}\tmp\"   ; temporary directory for HTTP uploaded files (will use system default if not specified)
  245. upload_max_filesize = 2M            ; Maximum allowed size for uploaded files
  246.  
  247.  
  248. ;;;;;;;;;;;;;;;;;;
  249. ; Fopen wrappers ;
  250. ;;;;;;;;;;;;;;;;;;
  251. allow_url_fopen = On                ; Wheter to allow trating URLs like http:... or ftp:... like files
  252.  
  253.  
  254. ;;;;;;;;;;;;;;;;;;;
  255. ; Module Settings ;
  256. ;;;;;;;;;;;;;;;;;;;
  257.  
  258. [Syslog]
  259. define_syslog_variables    = Off    ; Whether or not to define the various syslog variables,
  260.                                 ; e.g. $LOG_PID, $LOG_CRON, etc.  Turning it off is a
  261.                                 ; good idea performance-wise.  In runtime, you can define
  262.                                 ; these variables by calling define_syslog_variables()
  263.  
  264.  
  265. [mail function]
  266. SMTP            =    localhost            ;for win32 only
  267. sendmail_from    =    me@localhost.com    ;for win32 only
  268. ;sendmail_path    =                        ;for unix only, may supply arguments as well (default is 'sendmail -t -i')
  269.  
  270. [debugger]
  271. debugger.enabled = true
  272. debugger.host = clienthost
  273. debugger.port = 7869
  274.  
  275. [Logging]
  276. ; These configuration directives are used by the example logging mechanism.
  277. ; See examples/README.logging for more explanation.
  278. ;logging.method    = db
  279. ;logging.directory = /path/to/log/directory
  280.  
  281. [Java]
  282. ;java.class.path = .\php_java.jar
  283. ;java.home = c:\jdk
  284. ;java.library = c:\jdk\jre\bin\hotspot\jvm.dll 
  285. ;java.library.path = .\
  286.  
  287.  
  288. [SQL]
  289. sql.safe_mode    =    Off
  290.  
  291. [ODBC]
  292. ;uodbc.default_db        =    Not yet implemented
  293. ;uodbc.default_user        =    Not yet implemented
  294. ;uodbc.default_pw        =    Not yet implemented
  295. uodbc.allow_persistent    =    On    ; allow or prevent persistent links
  296. uodbc.check_persistent  =     On    ; check that a connection is still validbefore reuse
  297. uodbc.max_persistent    =    -1    ; maximum number of persistent links. -1 means no limit
  298. uodbc.max_links            =    -1    ; maximum number of links (persistent+non persistent). -1 means no limit
  299. uodbc.defaultlrl    =    4096    ; Handling of LONG fields. Returns number of bytes to variables, 0 means passthru
  300. uodbc.defaultbinmode    =     1    ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char
  301. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation of uodbc.defaultlrl
  302. ; and uodbc.defaultbinmode
  303.  
  304. [MySQL]
  305. mysql.allow_persistent    =    On    ; allow or prevent persistent link
  306. mysql.max_persistent    =    -1    ; maximum number of persistent links. -1 means no limit
  307. mysql.max_links            =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  308. mysql.default_port        =        ; default port number for mysql_connect().  If unset,
  309.                                 ; mysql_connect() will use the $MYSQL_TCP_PORT, or the mysql-tcp
  310.                                 ; entry in /etc/services, or the compile-time defined MYSQL_PORT
  311.                                 ; (in that order).  Win32 will only look at MYSQL_PORT.
  312. mysql.default_socket    =        ; default socket name for local MySQL connects.  If empty, uses the built-in
  313.                                 ; MySQL defaults
  314. mysql.default_host        =        ; default host for mysql_connect() (doesn't apply in safe mode)
  315. mysql.default_user        =        ; default user for mysql_connect() (doesn't apply in safe mode)
  316. mysql.default_password    =        ; default password for mysql_connect() (doesn't apply in safe mode)
  317.                                 ; Note that this is generally a *bad* idea to store passwords
  318.                                 ; in this file.  *Any* user with PHP access can run
  319.                                 ; 'echo cfg_get_var("mysql.default_password")' and reveal that
  320.                                 ; password!  And of course, any users with read access to this
  321.                                 ; file will be able to reveal the password as well.
  322.  
  323. [mSQL]
  324. msql.allow_persistent    =    On    ; allow or prevent persistent link
  325. msql.max_persistent        =    -1    ; maximum number of persistent links. -1 means no limit
  326. msql.max_links            =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  327.  
  328. [PostgresSQL]
  329. pgsql.allow_persistent    =    On    ; allow or prevent persistent link
  330. pgsql.max_persistent    =    -1    ; maximum number of persistent links. -1 means no limit
  331. pgsql.max_links            =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  332.  
  333. [Sybase]
  334. sybase.allow_persistent    =    On    ; allow or prevent persistent link
  335. sybase.max_persistent    =    -1    ; maximum number of persistent links. -1 means no limit
  336. sybase.max_links        =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  337. ;sybase.interface_file    =    "/usr/sybase/interfaces"
  338. sybase.min_error_severity    =    10    ; minimum error severity to display
  339. sybase.min_message_severity    =    10    ; minimum message severity to display
  340. sybase.compatability_mode    = Off    ; compatability mode with old versions of PHP 3.0.
  341.                                     ; If on, this will cause PHP to automatically assign types to results
  342.                                     ; according to their Sybase type, instead of treating them all as
  343.                                     ; strings.  This compatability mode will probably not stay around
  344.                                     ; forever, so try applying whatever necessary changes to your code,
  345.                                     ; and turn it off.
  346.  
  347. [Sybase-CT]
  348. sybct.allow_persistent    =    On        ; allow or prevent persistent link
  349. sybct.max_persistent    =    -1        ; maximum number of persistent links. -1 means no limit
  350. sybct.max_links            =    -1        ; maximum number of links (persistent+non persistent).  -1 means no limit
  351. sybct.min_server_severity    =    10    ; minimum server message severity to display
  352. sybct.min_client_severity    =    10    ; minimum client message severity to display
  353.  
  354. [bcmath]
  355. bcmath.scale    =    0    ; number of decimal digits for all bcmath functions
  356.  
  357. [browscap]
  358. ;browscap    =    extra/browscap.ini
  359.  
  360. [Informix]
  361. ifx.default_host        =        ; default host for ifx_connect() (doesn't apply in safe mode)
  362. ifx.default_user        =        ; default user for ifx_connect() (doesn't apply in safe mode)
  363. ifx.default_password        =        ; default password for ifx_connect() (doesn't apply in safe mode)
  364. ifx.allow_persistent        =    On    ; allow or prevent persistent link
  365. ifx.max_persistent        =    -1    ; maximum number of persistent links. -1 means no limit
  366. ifx.max_links            =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  367. ifx.textasvarchar        =    0    ; if set on, select statements return the contents of a text blob instead of it's id
  368. ifx.byteasvarchar        =    0    ; if set on, select statements return the contents of a byte blob instead of it's id
  369. ifx.charasvarchar        =    0    ; trailing blanks are stripped from fixed-length char columns. May help the life
  370.                         ; of Informix SE users. 
  371. ifx.blobinfile            =    0    ; if set on, the contents of text&byte blobs are dumped to a file instead of
  372.                         ; keeping them in memory
  373. ifx.nullformat            =    0    ; NULL's are returned as empty strings, unless this is set to 1. In that case,
  374.                         ; NULL's are returned as string 'NULL'.
  375.  
  376. [Session]
  377. session.save_handler      = files   ; handler used to store/retrieve data
  378. session.save_path         ="{app}\tmp\"    ; argument passed to save_handler
  379.                                     ; in the case of files, this is the
  380.                                     ; path where data files are stored
  381. session.use_cookies       = 1       ; whether to use cookies
  382. session.name              = PHPSESSID  
  383.                                     ; name of the session
  384.                                     ; is used as cookie name
  385. session.auto_start        = 0       ; initialize session on request startup
  386. session.cookie_lifetime   = 0       ; lifetime in seconds of cookie
  387.                                     ; or if 0, until browser is restarted
  388. session.cookie_path       = /       ; the path the cookie is valid for
  389. session.cookie_domain     =         ; the domain the cookie is valid for
  390. session.serialize_handler = php     ; handler used to serialize data
  391.                                     ; php is the standard serializer of PHP
  392. session.gc_probability    = 1       ; percentual probability that the 
  393.                                     ; 'garbage collection' process is started
  394.                                     ; on every session initialization
  395. session.gc_maxlifetime    = 1440    ; after this number of seconds, stored
  396.                                     ; data will be seen as 'garbage' and
  397.                                     ; cleaned up by the gc process
  398. session.referer_check     =         ; check HTTP Referer to invalidate 
  399.                                     ; externally stored URLs containing ids
  400. session.entropy_length    = 0       ; how many bytes to read from the file
  401. session.entropy_file      =         ; specified here to create the session id
  402. ; session.entropy_length    = 16
  403. ; session.entropy_file      = /dev/urandom
  404. session.cache_limiter     = nocache ; set to {nocache,private,public} to
  405.                                     ; determine HTTP caching aspects
  406. session.cache_expire      = 180     ; document expires after n minutes
  407. session.use_trans_sid     = 1       ; use transient sid support if enabled
  408.                                     ; by compiling with --enable-trans-sid
  409. url_rewriter.tags         = "a=href,area=href,frame=src,input=src,form=fakeentry"
  410.  
  411. [MSSQL]
  412. ;extension=php_mssql.dll
  413. mssql.allow_persistent        =    On    ; allow or prevent persistent link
  414. mssql.max_persistent        =    -1    ; maximum number of persistent links. -1 means no limit
  415. mssql.max_links                =    -1    ; maximum number of links (persistent+non persistent).  -1 means no limit
  416. mssql.min_error_severity    =    10    ; minimum error severity to display
  417. mssql.min_message_severity    =    10    ; minimum message severity to display
  418. mssql.compatability_mode    = Off    ; compatability mode with old versions of PHP 3.0.
  419.  
  420. [Assertion]
  421. ;assert.active                =    On    ; assert(expr); active by default
  422. ;assert.warning                =    On    ; issue a PHP warning for each failed assertion.
  423. ;assert.bail                =    Off    ; don't bail out by default.
  424. ;assert.callback            =    0    ; user-function to be called if an assertion fails.
  425. ;assert.quiet_eval            =    0    ; eval the expression with current error_reporting(). set to true if you want error_reporting(0) around the eval().
  426.  
  427. [Ingres II]
  428. ingres.allow_persistent        =    On    ; allow or prevent persistent link
  429. ingres.max_persistent        =    -1    ; maximum number of persistent links. (-1 means no limit)
  430. ingres.max_links            =    -1    ; maximum number of links, including persistents (-1 means no limit)
  431. ingres.default_database        =        ; default database (format : [node_id::]dbname[/srv_class]
  432. ingres.default_user            =        ; default user
  433. ingres.default_password        =        ; default password
  434.  
  435. [Verisign Payflow Pro]
  436. pfpro.defaulthost            =    "test.signio.com"    ; default Signio server
  437. pfpro.defaultport            =    443    ; default port to connect to
  438. pfpro.defaulttimeout        =    30    ; default timeout in seconds
  439.  
  440. ; pfpro.proxyaddress        =        ; default proxy IP address (if required)
  441. ; pfpro.proxyport            =        ; default proxy port
  442. ; pfpro.proxylogon            =        ; default proxy logon
  443. ; pfpro.proxypassword        =        ; default proxy password
  444.  
  445. ; Local Variables:
  446. ; tab-width: 4
  447. ; End:
  448.  
  449.  
  450. ;;;;;;;;;;;;;;;;;;;;;;
  451. ; Dynamic Extensions ;
  452. ;;;;;;;;;;;;;;;;;;;;;;
  453. ; if you wish to have an extension loaded automaticly, use the
  454. ; following syntax:  extension=modulename.extension
  455. ; for example, on windows,
  456. ; extension=msql.dll
  457. ; or under UNIX,
  458. ; extension=msql.so
  459. ; Note that it should be the name of the module only, no directory information 
  460. ; needs to go here.  Specify the location of the extension with the extension_dir directive above.
  461.  
  462.  
  463. ;Windows Extensions
  464. ;Note that MySQL and ODBC support is now built in, so no dll is needed for it.
  465. ;
  466. ;PHPExt
  467. extension=php_bz2.dll
  468. extension=php_cpdf.dll
  469. extension=php_ctype.dll
  470. ;extension=php_curl.dll
  471. extension=php_cybercash.dll
  472. extension=php_db.dll
  473. extension=php_dba.dll
  474. extension=php_dbase.dll
  475. ;extension=php_dbx.dll
  476. ;extension=php_domxml.dll
  477. ;extension=php_dotnet.dll
  478. extension=php_exif.dll
  479. ;extension=php_fbsql.dll
  480. ;extension=php_fdf.dll
  481. ;extension=php_filepro.dll
  482. extension=php_gd.dll
  483. ;extension=php_gd_gif.dll
  484. ;extension=php_gd2.dll
  485. ;extension=php_gettext.dll
  486. ;extension=php_hyperwave.dll
  487. ;extension=php_iconv.dll
  488. ;extension=php_ifx.dll
  489. ;extension=php_iisfunc.dll
  490. extension=php_imap.dll
  491. ;extension=php_ingres.dll
  492. ;extension=php_interbase.dll
  493. ;extension=php_ixsfunc.dll
  494. extension=php_java.dll
  495. extension=php_ldap.dll
  496. ;extension=php_mbstring.dll
  497. ;extension=php_mcrypt.dll
  498. extension=php_mhash.dll
  499. extension=php_ming.dll
  500. ;extension=php_msql.dll
  501. ;extension=php_mssql.dll
  502. ;extension=php_notes.dll
  503. ;extension=php_oci8.dll
  504. ;extension=php_openssl.dll
  505. ;extension=php_oracle.dll
  506. extension=php_pdf.dll
  507. ;extension=php_pear.dll
  508. extension=php_pgsql.dll
  509. ;extension=php_printer.dll
  510. ;extension=php_shmop.dll
  511. ;extension=php_snmp.dll
  512. ;extension=php_sockets.dll
  513. ;extension=php_sybase_ct.dll
  514. ;extension=php_xslt.dll
  515. ;extension=extension=php_yaz.dll
  516. ;extension=extension=php_zlib.dll
  517. ;/PHPExt